home *** CD-ROM | disk | FTP | other *** search
/ Games of Daze / Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso / x2ftp / msdos / mxcode / soundx / vocplay.c < prev    next >
C/C++ Source or Header  |  1993-06-27  |  2KB  |  80 lines

  1.  
  2. /* Copyright 1993 by Peter Sprenger   Pete@amber.dinoco.de
  3.  *                   5014 Kerpen 3
  4.  *                   Germany
  5.  *
  6.  * Permission to use, copy, modify, and distribute this
  7.  * software and its documentation for any purpose and without
  8.  * fee is hereby granted, provided that the above copyright
  9.  * notice appear in all copies.  The author Peter Sprenger
  10.  * makes no representations about the suitability of this
  11.  * software for any purpose.  It is provided "as is" without
  12.  * express or implied warranty.
  13.  */
  14.  
  15.  
  16. #include <stddef.h>
  17. #include <stdlib.h>
  18. #include <stdio.h>
  19. #include <dos.h>
  20. #include <io.h>
  21. #include <fcntl.h>
  22. #include <alloc.h>
  23. #include <sys\stat.h>
  24. #include "mydef.h"
  25. #include "sound.h"
  26. #include "timerx.h"
  27. #include "dmalib.h"
  28.  
  29.  
  30. extern volatile BYTE voc_mode;
  31.  
  32. void main(int argc,char *argv[])
  33. {
  34.     int file;
  35.     WORD ret,rate;
  36.     struct stat mystat;
  37.     long length;
  38.     char huge *base,huge *base2;
  39.     BYTE left,right;
  40.  
  41.  
  42.     if(argc==2)
  43.     {
  44.         stat(argv[1],&mystat);
  45.         length=mystat.st_size;
  46.         base=farmalloc(length);
  47.         if(!base)
  48.         {
  49.             printf("Not enough memory\n");
  50.             return;
  51.         }
  52.         file=open(argv[1],O_RDONLY|O_BINARY);
  53.         if(file== -1)
  54.         {
  55.             printf("Cannot open file\n");
  56.             if(base) farfree(base);
  57.             return;
  58.         }
  59.         base2=base;
  60.         do
  61.         {
  62.             ret=read(file,base2,32700);  /* do not use this call in small model! */
  63.             base2+=ret;
  64.         } while(ret==32700);
  65.         close(file);
  66.  
  67.         if(SB_Setup())
  68.         {
  69.             SB_SetVect(sample);
  70.             if(!VocPlay((char far *)base)) printf("No vocfile!\n");
  71.             else while(!kbhit() && voc_mode);
  72.  
  73.             VocStop();
  74.             SB_RemoveVect();
  75.         }
  76.         farfree(base);
  77.     }
  78.     else printf("usage: vocplay filename\n");
  79. }
  80.